Source for file IT_Error.php
Documentation is available at IT_Error.php
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2005 Ulf Wendel, Pierre-Alain Joye |
// +----------------------------------------------------------------------+
// | This source file is subject to the New BSD license, That is bundled |
// | with this package in the file LICENSE, and is available through |
// | the world-wide-web at |
// | http://www.opensource.org/licenses/bsd-license.php |
// | If you did not receive a copy of the new BSD license and are unable |
// | to obtain it through the world-wide-web, please send a note to |
// | pajoye@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Author: Ulf Wendel <ulf.wendel@phpdoc.de> |
// | Pierre-Alain Joye <pajoye@php.net> |
// +----------------------------------------------------------------------+
// $Id: IT_Error.php,v 1.2 2005/11/01 10:14:19 pajoye Exp $
* Prefix of all error messages.
* Creates an cache error object.
* @param string error message
* @param string file where the error occured
* @param string linenumber where the error occured
function IT_Error($msg, $file = __FILE__ , $line = __LINE__ ) {
$this->PEAR_Error (sprintf("%s [%s on line %d].", $msg, $file, $line));
Documentation generated on Mon, 11 Mar 2019 14:38:58 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|